All Questions
3 questions
2votes
5answers
2kviews
AngularJS: Cannot interpolate attribute from first directive to a second. (w/ plunker example)
Reference Reference plunker: http://plnkr.co/edit/otv5mVVQ36iPi3Mp0FYw?p=preview Explanation of the issue Suppose that we have two directives, first-directive and second-directive. Now suppose we ...
1vote
1answer
448views
Angularjs, need best solution to move dynamic template formation and compilation code of multiple directives from controller to custom directive
I need to display multiple angularjs directives in a single page on tab click. It could be a combination c3 chart directives and ng grid directives. I am preparing the model with all these relevant ...
2votes
2answers
177views
Adding directive inside the directive programatically
I want to append another instance of my directive into the parent directive but i can't use $apply to recompile my directive. I think i miss something here somewhere :) My HTML Code <div ng-app="...